home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Technotools
/
Technotools (Chestnut CD-ROM)(1993).ISO
/
lang_c
/
mscfunct
/
crt_smod.c
< prev
next >
Wrap
C/C++ Source or Header
|
1987-05-06
|
174b
|
12 lines
#include <dos.h>
void crt_set_mode( mode ) int mode;
{
union REGS regs;
regs.h.ah = 0;
regs.h.al = mode;
int86( 0x10, ®s, ®s );
}